home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Morphos / GCC / ppc-amigaos / include / clib / nonvolatile_protos.h < prev    next >
C/C++ Source or Header  |  2000-02-28  |  1KB  |  34 lines

  1. #ifndef  CLIB_NONVOLATILE_PROTOS_H
  2. #define  CLIB_NONVOLATILE_PROTOS_H
  3.  
  4. /*
  5. **    $VER: nonvolatile_protos.h 40.5 (30.7.93)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  EXEC_LISTS_H
  18. #include <exec/lists.h>
  19. #endif
  20. #ifndef  LIBRARIES_NONVOLATILE_H
  21. #include <libraries/nonvolatile.h>
  22. #endif
  23. /*--- functions in V40 or higher (Release 3.1) ---*/
  24. APTR GetCopyNV( STRPTR appName, STRPTR itemName, long killRequesters );
  25. void FreeNVData( APTR data );
  26. UWORD StoreNV( STRPTR appName, STRPTR itemName, APTR data,
  27.     unsigned long length, long killRequesters );
  28. BOOL DeleteNV( STRPTR appName, STRPTR itemName, long killRequesters );
  29. struct NVInfo *GetNVInfo( long killRequesters );
  30. struct MinList *GetNVList( STRPTR appName, long killRequesters );
  31. BOOL SetNVProtection( STRPTR appName, STRPTR itemName, long mask,
  32.     long killRequesters );
  33. #endif     /* CLIB_NONVOLATILE_PROTOS_H */
  34.